home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple WWDC 1996
/
WWDC96_1996 (CD).toast
/
Technology Materials
/
MacOS 8 Resources
/
Developer Tools
/
Mac OS 8 Interfaces & Libraries
/
Interfaces
/
CIncludes
/
Start.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-05-01
|
3KB
|
128 lines
/*
File: Start.h
Contains: Start Manager Interfaces.
Version: Technology: System 7.5
Release: Universal Interfaces 3.0d3 on Copland DR1
Copyright: © 1984-1996 by Apple Computer, Inc. All rights reserved.
Bugs?: If you find a problem with this file, send the file and version
information (from above) and the problem description to:
Internet: apple.bugs@applelink.apple.com
AppleLink: APPLE.BUGS
*/
#ifndef __START__
#define __START__
#ifndef __TYPES__
#include <Types.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT_SUPPORTED
#pragma import on
#endif
#if PRAGMA_ALIGN_SUPPORTED
#pragma options align=mac68k
#endif
union DefStartRec {
struct {
SignedByte sdExtDevID;
SignedByte sdPartition;
SignedByte sdSlotNum;
SignedByte sdSRsrcID;
} slotDev;
struct {
SignedByte sdReserved1;
SignedByte sdReserved2;
short sdRefNum;
} scsiDev;
};
typedef union DefStartRec DefStartRec;
typedef DefStartRec *DefStartPtr;
struct DefVideoRec {
SignedByte sdSlot;
SignedByte sdsResource;
};
typedef struct DefVideoRec DefVideoRec;
typedef DefVideoRec *DefVideoPtr;
struct DefOSRec {
SignedByte sdReserved;
SignedByte sdOSType;
};
typedef struct DefOSRec DefOSRec;
typedef DefOSRec *DefOSPtr;
#if GENERATING68K && !GENERATINGCFM
#pragma parameter GetDefaultStartup(__A0)
#endif
extern pascal void GetDefaultStartup(DefStartPtr paramBlock)
ONEWORDINLINE(0xA07D);
#if GENERATING68K && !GENERATINGCFM
#pragma parameter SetDefaultStartup(__A0)
#endif
extern pascal void SetDefaultStartup(DefStartPtr paramBlock)
ONEWORDINLINE(0xA07E);
#if GENERATING68K && !GENERATINGCFM
#pragma parameter GetVideoDefault(__A0)
#endif
extern pascal void GetVideoDefault(DefVideoPtr paramBlock)
ONEWORDINLINE(0xA080);
#if GENERATING68K && !GENERATINGCFM
#pragma parameter SetVideoDefault(__A0)
#endif
extern pascal void SetVideoDefault(DefVideoPtr paramBlock)
ONEWORDINLINE(0xA081);
#if GENERATING68K && !GENERATINGCFM
#pragma parameter GetOSDefault(__A0)
#endif
extern pascal void GetOSDefault(DefOSPtr paramBlock)
ONEWORDINLINE(0xA084);
#if GENERATING68K && !GENERATINGCFM
#pragma parameter SetOSDefault(__A0)
#endif
extern pascal void SetOSDefault(DefOSPtr paramBlock)
ONEWORDINLINE(0xA083);
extern pascal void SetTimeout(short count);
extern pascal void GetTimeout(short *count);
#if PRAGMA_ALIGN_SUPPORTED
#pragma options align=reset
#endif
#if PRAGMA_IMPORT_SUPPORTED
#pragma import off
#endif
#ifdef __cplusplus
}
#endif
#endif /* __START__ */